projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
acea4fa
)
Deprecate direct access to public variables in GtkBox.
author
Tim Janik
<timj@src.gnome.org>
Fri, 20 Jun 2008 10:57:52 +0000
(10:57 +0000)
committer
Tim Janik
<timj@src.gnome.org>
Fri, 20 Jun 2008 10:57:52 +0000
(10:57 +0000)
* gtk/gtkbox.h: Deprecate direct access through GSEAL().
svn path=/trunk/; revision=20489
gtk/gtkbox.h
patch
|
blob
|
history
diff --git
a/gtk/gtkbox.h
b/gtk/gtkbox.h
index 9e70836620595ccffc373808e15720325ea6d291..3110fa3a05edb827e29ed026d47d9c26508e817e 100644
(file)
--- a/
gtk/gtkbox.h
+++ b/
gtk/gtkbox.h
@@
-56,9
+56,9
@@
struct _GtkBox
GtkContainer container;
/*< public >*/
- GList *
children
;
- gint16
spacing
;
- guint
homogeneous : 1
;
+ GList *
GSEAL (children)
;
+ gint16
GSEAL (spacing)
;
+ guint
GSEAL (homogeneous : 1)
;
};
struct _GtkBoxClass